/*====================通用*********/
@media (min-width: 1680px) {
	.container {
		width: 1600px;
	}
}

body {
	background-color: rgba(0, 0, 0, 0, 0);
	color: #333;
}

a,
a:active,
a:visited,
a:link {
	color: #333;
	text-decoration: none;
}

a:hover {
	color: #122E8D;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.special-box-wrap {
	display: -webkit-box;
	-webkit-box-orient: horizontal;
	-webkit-box-align: center;
	display: -moz-box;
	-moz-box-orient: horizontal;
	-moz-box-align: center;
	display: -o-box;
	-o-box-orient: horizontal;
	-o-box-align: center;
	display: -ms-box;
	-ms-box-orient: horizontal;
	-ms-box-align: center;
	display: box;
	box-orient: horizontal;
	box-pack: center;
	box-align: center;
}

/* 图片通用样式 */

.img img,
img {
	width: auto;
	max-width: 100%;
	transition: all .9s cubic-bezier(.215, .61, .355, 1) 0s !important;
}

a:hover .img img {
	transform: scale(1.05);
}

.img {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

/* 定义字号 */

html {
	font-size: 10px;
}

@media screen and (min-width:320px) {
	html {
		font-size: 7px
	}
}

@media screen and (min-width:768px) {
	html {
		font-size: 6px
	}
}

@media screen and (min-width:1023px) {
	html {
		font-size: 7px
	}
}

@media screen and (min-width:1440px) {
	html {
		font-size: 8px
	}
}


/* 定义边距 */
.margin-p-lgx {
	margin-top: 15rem !important;
}

.margin-p-lg {
	margin-top: 9rem !important;
}

.margin-b-lg {
	margin-bottom: 9rem !important;
}

.margin-p-md {
	margin-top: 5rem !important;
}

.margin-b-md {
	margin-bottom: 5rem !important;
}

.margin-p-sm {
	margin-top: 2rem !important;
}

.margin-b-sm {
	margin-bottom: 5rem !important;
}

.margin-p-xs {
	margin-top: 3rem !important;
}

.margin-b-xs {
	margin-bottom: 3rem !important;
}

/* 定义颜色 */
.bg-black {
	background-color: #333;
}

.bg-blue {
	background-color: #122E8D;
}

.bg-gray {
	background-color: #f3f3f3;
}

.gray {
	color: #eaeaea !important;
}

.dark-gray {
	color: #666 !important;
}

.shadow {
	box-shadow: 0px 0px 30px #c3c3c3;
}

.white {
	color: #fff !important;
	text-shadow: 2px 2px 5px #666;
}

.black {
	color: #333 !important;
}

/* 按钮通用样式 */
.btn {
	border: 1px solid;
	border-radius: 0;
	padding: 6px 30px;
	border-radius: 30px;
}

.btn-default {
	width: 125px;
	color: #F7B015;
	background-color: rgba(0, 0, 0, 0);
	border-color: #F7B015;
	transition: all .9s cubic-bezier(.215, .61, .355, 1) 0s !important;
	padding: 1rem 0;
	font-size: 14px;
	text-align: center;
}

.btn-default-white {
	width: 125px;
	color: #fff;
	background-color: rgba(0, 0, 0, 0);
	border-color: #fff;
	transition: all .9s cubic-bezier(.215, .61, .355, 1) 0s !important;
	padding: 1rem 0;
	font-size: 14px;
	text-align: center;
}

.btn-default:hover,
.btn-default-white:hover {
	color: #fff;
	background-color: #7CBE09;
	border-color: #7CBE09;
}

.btn-primary {
	color: #333;
	background-color: #f3f3f3;
	border-color: #e7e7e7;
	margin: 0 auto;
	text-align: center;
	display: block;
	transition: all .9s cubic-bezier(.215, .61, .355, 1) 0s !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active,
.open>.dropdown-toggle.btn-primary {
	color: #fff;
	background-color: #c13759;
	border-color: #c13759;
}

/*====================导航*********/

.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	height: 11rem;
	padding: 0 30px;
	background: #fff;
}

/*左侧logo*/
.header .left {
	width: 20%;
	line-height: 11rem;
}

.header .left .img2 {
	display: none;
}

@media screen and (max-width: 1023px) {
	.header .left {
		width: 30%;
		line-height: 11rem;
	}
}

@media screen and (max-width: 767px) {
	.header .left {
		width: 60%;
	}
}

/*右侧*/
.header .nav {
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	height: 100%;
	line-height: 11rem;
	display: block;
}

.header .navbar_nav li {
	float: left;
	position: relative;
	display: block;
}

.header .navbar_nav li:after {
	content: "";
	width: 0;
	height: 2px;
	background: #7CBE09;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all 0.5s ease 0s;
}

.header .navbar_nav li:hover:after {
	width: 100%;
}

.header .navbar_nav li a {
	text-decoration: none;
	height: 100%;
	padding: 0 25px;
	display: block;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	font-size: 16px;
}

.header .navbar_nav li:hover a {
	color: #7CBE09;
}

.header .navbar_nav li.dropdown {
	display: inherit;
	position: relative;
}

.header .navbar_nav li.dropdown .jt {
	width: 20px;
	height: 20px;
	background: url(i/top.png) no-repeat;
	background-size: 100% 100%;
	display: block;
}

.header .navbar_nav li.dropdown .dropdown_menu {
	display: none;
	position: absolute;
	top: 11rem;
	width: 100%;
	background: #fff;
	box-shadow: 0 15px 27px 0 rgba(167, 165, 165, 0.38);
	width: 120%;
	left: -10%;
}

.header .navbar_nav li.dropdown .dropdown_menu a {
	font-size: 14px;
	color: #666;
	padding: 0 10px;
	line-height: 60px;
	text-align: center;
	background: #fff;
	margin-bottom: 2px;
}

.header .navbar_nav li.dropdown:hover .dropdown_menu {
	display: block;
	background: #f3f3f3;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.header .navbar_nav li.dropdown:hover .dropdown_menu a {
	color: #666;
}

.header .navbar_nav li.dropdown:hover .dropdown_menu a:hover {
	color: #7CBE09;
	background: #fafafa;
}

/*白色背景的头部*/
.header.on {
	background: #fff;
	border-bottom: 1px solid #ccc;
}

.header.on .left .img1 {
	display: none;
}

.header.on .left .img2 {
	display: inline-block;
}

.header.on .navbar_nav li a {
	color: #333;
}

.header.on .navbar_nav li:hover a {
	color: #7CBE09;
}

#navToggle {
	display: none;
}

.m_nav {
	position: fixed;
	top: 0px;
	box-shadow: 0 15px 27px 0 rgba(167, 165, 165, 0.38);
	width: 100%;
	height: 100%;
	background: #fff;
	transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
	z-index: 99999;
	opacity: 1;
	visibility: visible;
	margin-top: 0;
	overflow-y: auto;
	transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	top: 0;
	transform: translateX(100%);
}

.m_nav.open {
	transform: translateX(0);
}

.m_nav .top {
	height: 60px;
	padding: 20px;
	box-sizing: border-box;
}

.m_nav .top .closed {
	width: 30px;
	height: 30px;
	vertical-align: middle;
	float: right;
	cursor: pointer;
}

.m_nav .logo {
	width: 100%;
	margin: 0 auto;
}

.m_nav .logo img {
	height: 50px;
	display: block;
	margin: 30px auto;
}

.m_nav .ul {
	margin-top: 30px;
}

.m_nav .ul li {
	padding: 0 20px;
	border-bottom: 1px solid #f5f5f5;
	transform: translateY(0);
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	opacity: 0;
}

.m_nav.open .ul li {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.m_nav .ul li:nth-child(1) {
	-webkit-transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(2) {
	-webkit-transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(3) {
	-webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(4) {
	-webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(5) {
	-webkit-transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(6) {
	-webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(7) {
	-webkit-transition: all 1.4s cubic-bezier(.77, 0, .175, 1) 0ms;
	transition: all 1.4s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.header .navbar_nav li:hover:after {
	width: 100%;
}

.m_nav .ul li a {
	display: block;
	text-decoration: none;
	color: #333;
	font-size: 16px;
	height: 50px;
	line-height: 50px;
	width: 100%;
}

.m_nav .ul li .dropdown_menu {
	display: none;
}

.m_nav .ul li.dropdown.active .dropdown_menu {
	display: block;
}

.m_nav .ul li .dropdown_menu a {
	display: block;
	height: 50px;
	line-height: 50px;
	padding: 0 40px;
	box-sizing: border-box;
	border-bottom: 1px solid #f5f5f5;
}

.m_nav .ul li .dropdown_menu a:last-child {
	border: none;
}

.banner {
	width: 100%;
}

.banner img {
	width: 100%;
}

@media screen and (max-width: 1280px) {
	.header {
		padding: 0 10px;
	}

	.header #navToggle {
		height: 100%;
		padding: 9px 15px;
		margin-right: 0;
		display: inline-block;
		float: right;
		margin-top: 5px;
	}

	.header #navToggle span {
		position: relative;
		width: 25px;
		height: 1px;
		margin-top: 19px;
	}

	.header #navToggle span:before,
	.header #navToggle span:after {
		content: '';
		position: relative;
		width: 100%;
		height: 1px;
		left: 0;
	}

	.header #navToggle span,
	.header #navToggle span:before,
	.header #navToggle span:after {
		-webkit-transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		transition: 0.3s;
		display: block;
		background: #595757;
	}

	.header.on #navToggle span,
	.header.on #navToggle span:before,
	.header.on #navToggle span:after {
		-webkit-transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		transition: 0.3s;
		display: block;
		background: #000;
	}

	.header #navToggle span:before {
		top: 8px;
	}

	.header #navToggle span:after {
		bottom: 10px;
	}

	.header #navToggle.open span:before {
		top: 10px;
		-webkit-transform: translateY(-11px) rotate(-45deg);
		-moz-transform: translateY(-11px) rotate(-45deg);
		-ms-transform: translateY(-11px) rotate(-45deg);
		-o-transform: translateY(-11px) rotate(-45deg);
		transform: translateY(-11px) rotate(-45deg);
	}

	.header #navToggle.open span:after {
		bottom: 12px;
		-webkit-transform: translateY(10px) rotate(45deg);
		-moz-transform: translateY(10px) rotate(45deg);
		-ms-transform: translateY(10px) rotate(45deg);
		-o-transform: translateY(10px) rotate(45deg);
		transform: translateY(10px) rotate(45deg);
	}

	.header #navToggle.open span {
		background: none;
	}

	.header #navToggle.open span:before,
	.header #navToggle.open span:after {
		background: #4f4f4f;
	}

	.header .nav {
		display: none;
	}

	.banner img {
		height: 600px;
		object-fit: cover;
	}
}

@media screen and (max-width: 767px) {
	.header #navToggle {
		margin-top: 15px;
	}
}

.header .login {
	padding-top: 15px;
	float: right;
}

.header .login a {
	height: 30px;
	line-height: 30px;
	padding: 0 10px;
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
}

.header.on .login a {
	color: #7e7d80;
}

/* 语言切换 */

.language {
	border: 1px solid #7CBE09;
	border-radius: 30px;
	font-size: 1.4rem;
	float: right;
	line-height: 4rem;
	margin-top: 3.5rem;
}

.m_nav .language {
	float: left;
	margin-left: 20px;
}

.language a {
	margin: 4px;
	padding: 4px 6px;
}

.language a:hover {
	color: #7CBE09;
}

/* .language a.on {
	background-color: #7CBE09;
	color: #fff;
	border-radius: 20px;
	padding: 4px 10px;
} */

/*====================轮播图*********/

.carousel-caption {
	top: 30rem;
	bottom: 0;
	right: 0;
	left: 0;
}

.carousel-inner>.item>img,
.carousel-inner>.item>a>img {
	width: 100%;
}

.carousel-inner-tit {
	font-size: 7.5rem;
}

.carousel-inner-en {
	padding-top: 24px;
	font-size: 3rem;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
	display: none;
}

.carousel-indicators li {
	width: 11px;
	height: 11px;
	margin: 0;
	background-color: rgba(255, 255, 255, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.4);
	margin: 0 5px;
}

.carousel-indicators li.active {
	width: 30px;
	height: 11px;
	margin: 0;
	background-color: #7CBE09;
	border: 1px solid #7CBE09;
}

@media screen and (max-width: 1023px) {

	.carousel-caption {
		top: 20rem;
	}

	.carousel-inner-tit {
		font-size: 5rem;
	}
}


@media screen and (max-width: 767px) {

	.carousel-caption {
		top: 0;
	}

	/* 	.carousel-inner .item {
		width: 200%;
	}

	.carousel-inner .item img {
		margin-left: -25%;
	} */
}

/* 轮播 */

.carousel {
	margin-top: 11rem;
}

.swiper-slide {
	margin-bottom: 5rem;
}

.swiper-container .btn {
	margin-top: -46px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-family: swiper-icons;
	font-size: var(--swiper-navigation-size);
	text-transform: none !important;
	letter-spacing: 0;
	text-transform: none;
	font-variant: initial;
	line-height: 1;
	font-size: 20px;
	/* border: 1px solid #f4f4f6; */
	/* border-radius: 50%; */
	/* padding: 8px 11px; */
	text-align: center;
}

.swiper-button-next,
.swiper-button-prev {
	position: relative;
	top: 50%;
	/* width: 30px; */
	/* height: 30px; */
	width: 5rem;
	height: 7rem;
	margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	/* color: #ca0e00; */
	color: #7CBE09;
	/* border-radius: 50%; */
	float: right;
	border: 1px solid #f4f4f6;
}

.swiper-button-prev {
	margin-right: 40px;
}

/* 
.swiper-button-next:hover,
.swiper-button-prev:hover {
	color: #fff;
	background-color: #7CBE09;
	border: 1px solid #7CBE09;
} */

.swiper-container a {
	z-index: 999;
	position: relative;
}

/*====================首页*********/

.index-bg {
	width: 100%;
	height: 96rem;
	background-size: 100% auto !important;
	background-position: center center !important;
	background-attachment: fixed !important;
	background-repeat: no-repeat !important;
	transition: all 1.5s ease 0s;
}

.index-bg1 {
	width: 100%;
	height: 96rem;
	background-size: 100% auto !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	transition: all 1.5s ease 0s;
}

/* .index-bg.news:hover {
	background-size: 110% auto !important;

} */

.index .title {
	font-size: 5rem;
	position: relative;
	padding-bottom: 10px;
}

.index .title::before {
	content: "";
	width: 100%;
	height: 2px;
	background: #eee;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all 0.5s ease 0s;
}

.index .title:after {
	content: "";
	width: 15rem;
	height: 4px;
	background: #7CBE09;
	position: absolute;
	bottom: -1px;
	left: 0;
	transition: all 0.5s ease 0s;
}

.index-bg:hover .title:after {
	width: 100%;
}

.des {
	font-size: 2.2rem;
	color: #666;
	margin-top: 30px;
	margin-bottom: 10rem;
}

.index-bg:hover img {
	transform: scale(1.25);
}

@media screen and (max-width: 1023px) {
	.index-bg {
		height: 66rem;
		background-size: 180% !important;
		background-position: center center !important;
	}

	.des {
		margin-bottom: 2rem;
	}

	.index-bg1 {
		background-size: 110% !important;
		background-position-y: -1200% !important;
	}

	.index-bg.product .title {
		margin-top: -200px;
	}

}

@media screen and (max-width: 767px) {

	.index-bg .container.index {
		width: 100%;
	}

	.index-bg {
		height: 66rem;
		background-size: 250% !important;
		background-attachment: scroll !important;
	}

	.des {
		margin-bottom: 2rem;
	}

	.index-bg1 {
		background-size: 110% !important;
		background-position-y: 50% !important;
	}

	.index-bg.product .title {
		margin-top: -250px;
	}

}


/*====================页尾*********/
footer {
	background-color: #D8D8D8;
	padding: 50px 0;
	position: relative;
	color: #666;
	width: 100%;
	background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
}

footer .link ul {
	width: 16%;
	float: left;
	text-align: left;
	font-size: 2rem;
	font-weight: bold;
}

footer .link ul li {
	display: block;
	font-size: 1.6rem;
	line-height: 1.8;
	font-weight: normal;
}

footer .link ul li:first-child {
	margin-top: 2rem;
}

/*图标*/
.footer_flex li .img-n {
	/* 	padding-top: 10px; */
	width: 100%;
}

.footer_flex {
	margin: 0 auto;
	display: inline-block;
	position: absolute;
	right: 20rem;
	bottom: 50px;
}

.footer_flex li {
	width: 4.5rem;
	height: 4.5rem;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	margin: 0px 14px;
	float: left;
	text-align: center;
	cursor: pointer;
	position: relative;
	z-index: 10;
}

.footer_flex li:hover .flex-footer {
	display: block;
}

.footer_flex li .flex-footer {
	width: 146px;
	height: 124px;
	position: absolute;
	left: -49px;
	top: -140px;
	text-align: center;
	padding-top: 15px;
	background: url(../images/footerflex.png) 1px top no-repeat;
	display: none;
}

.img-ewm {
	width: 10rem;
	max-width: 100px;
	position: absolute;
	bottom: -20px;
	left: -5px;
}

.copy {
	font-size: 12px;
}

.copy a,
.link a {
	color: #666;
}

@media screen and (max-width: 1280px) {
	.footer_flex {
		right: 15rem;
	}

	/* 	.footer_flex .img-n {
		width: 4rem;
	}
	
	.footer_flex .img-ewm {
		width: 10rem;
	} */
}


@media screen and (max-width: 1023px) {
	footer {
		padding: 20px 0;
	}

	.footer_flex {
		right: 100px;
		bottom: 80px;
	}

	footer .link ul {
		font-size: 14px;
	}

	footer .link ul li {
		font-size: 12px;
		line-height: 1.8;
	}

	.img-ewm {
		width: 80px;
		max-width: 80px;
	}
}

@media screen and (max-width: 667px) {
	footer {
		padding: 20px 0;
	}

	footer .link {
		display: none;
	}

	.footer_flex {
		position: relative;
		right: 0;
		bottom: 0;
	}
}

/*====================二级*********/
.list-banner {
	width: 100%;
	/* 	height: 80rem; */
	background-size: cover;
	background-position: center bottom !important;
	background-repeat: no-repeat !important;
	margin-top: 11rem;
	display: flex;
	align-items: center;
	position: relative;
}

.list-banner img {
	width: 100%;
}

.list-banner-wrap {
	/* 	padding-top: 10%; */
	color: #fff;
	text-shadow: 2px 2px 5px #666;
	position: absolute;
	top: 30%;
	left: 5%;
}

.list-banner-wrap .title {
	font-size: 7rem;
	/* 	text-transform: uppercase;
 */
}

.list-banner-wrap .sub_title {
	font-size: 5rem;
	text-transform: capitalize;
}

.list-menu {
	background-color: #ca0e00;
	height: 60px;
}

.nav-tabs {
	border-bottom: none;
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:hover {
	color: #fff;
	cursor: default;
	background-color: #ab0e00;
	border: none;
	border-bottom-color: rgb(221, 221, 221);
	border-bottom-color: transparent;
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:hover,
.nav-pills>li.active>a:focus {
	color: #fff !important;
	background-color: #ab0e00 !important;
}

.nav-pills>li>a {
	border-radius: 0;
	line-height: 38px;
	text-align: center;
}

.nav-pills>li {
	float: left;
	width: 19%;
}

.nav>li>a:hover,
.nav>li>a:focus {
	text-decoration: none;
	background-color: #ab0e00;
	color: #fff !important;
}

.nav>li>a:link,
.nav>li>a:visited {
	color: #fff;
	font-size: 16px;
}

.product-brand {
	position: relative;
	z-index: 9;
}

.des-grey {
	color: #7e7d80;
	line-height: 2;
	text-align: justify;
}

.product-bg {
	width: 100%;
	height: 500px;
	background: url(../image/product-bg.jpg) no-repeat left center;
	background-size: 100% auto;
	background-position: right top;
	background-attachment: fixed !important;
}

.product-bg .title {
	font-size: 24px;
	color: #ca0e00;
	margin-top: 20%;
}

.tech-bg2 {
	background-color: #f4f4f6;
	padding: 150px 150px 200px 200px;
	position: absolute;
	left: 0;
	margin-top: 8%;
}

.tech-l2 {
	z-index: 1;
	right: 0;
	margin-top: 20px;
}

.science {
	position: relative;
	z-index: 3;
	float: left;
	width: 100%;
	margin-top: -30%;
}

@media screen and (max-width: 1023px) {
	.list-banner {
		/* height: 300px; */
		/* 		background-size: 200% auto !important;
		background-position: 70% 50% !important; */
		background-size: 100% auto !important;
		background-position: center center !important;
	}

	.tech-bg2 {
		background-color: #f4f4f6;
		padding: 50px 100px;
	}

	.product-bg {
		background-attachment: scroll !important;
		height: 380px;
		background-size: 200% auto !important;
		background-position: 50% 50% !important;
	}

	.list-banner-wrap {
		padding-top: 5%;
	}
}

@media screen and (max-width: 767px) {
	.list-banner {
		/* height: 140px; */
		/* background-size: 300% auto !important;
		background-position: 70% 50% !important; */
	}

	.list-banner-wrap .title {
		font-size: 3rem;
	}


	.list-banner-wrap .sub_title {
		display: none;
	}

	.list-banner-wrap {
		top: 20%;
		left: 2%;
	}

	.nav>li>a:link,
	.nav>li>a:visited {
		color: #fff;
		font-size: 12px;
	}

	.brand .title {
		font-size: 24px;
		color: #fff;
		margin-top: 60%;
	}

	.product-bg {
		background-attachment: scroll !important;
		height: 280px;
		background-size: 200% auto !important;
		background-position: 50% 50% !important;
	}

	.science {
		margin-top: -50%;
	}

	.nav>li>a {
		position: relative;
		display: block;
		padding: 10px 2px;
	}

	.tech-bg2 {
		padding: 50px 100px;
		margin-top: 0;
		position: relative;
	}
}

/*====================二级*********/
.tech-wrap {
	width: 95%;
}

.special-box-wrap {
	display: -webkit-box;
	-webkit-box-orient: horizontal;
	-webkit-box-align: center;
	display: -moz-box;
	-moz-box-orient: horizontal;
	-moz-box-align: center;
	display: -o-box;
	-o-box-orient: horizontal;
	-o-box-align: center;
	display: -ms-box;
	-ms-box-orient: horizontal;
	-ms-box-align: center;
	display: box;
	box-orient: horizontal;
	box-pack: center;
	box-align: center;
}

@media screen and (max-width: 667px) {
	.tech-wrap {
		width: 100%;
	}
}

/*====================新闻中心二级*********/
.news-list .img {
	overflow: hidden;
	width: 100%;
}

.news-list .wrapper {
	width: 100%;
}

.news-list .news-wrapper-box {
	padding: 30px 30px;
}

.newslist-tit {
	font-size: 18px;
}

.newslist-des {
	font-size: 14px;
}

.news nav {
	text-align: center;
}

.pagination>li>a,
.pagination>li>span {
	/* position: relative;
	float: left;
	padding: 6px 12px;
	margin-left: -1px;
	line-height: 1.42857143; */
	/* color: #7e7d80; */
	color: #666666;
	text-decoration: none;
	background-color: #ffffff;
	border: none;
	font-size: 1.8rem;
	width: 4rem;
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 5px;
	border: 1px solid #d5d5d5;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
	color: #fff;
	background-color: #7CBE09 !important;
}

.pagination>li.active span {
	border: none;
	background-color: #7CBE09;
}

/* .pagination>li:first-child span {
	display: block;
	transform: translateX(-25%);
	width: 0;
	height: 0;
	border: 10px solid;
	border-color: transparent #666666 transparent transparent;

} */

/* .pagination>li:last-child span {
	display: block;
	transform: translateX(25%);
	width: 0;
	height: 0;
	border: 10px solid;
	border-color: transparent transparent transparent #666666;
} */

@media screen and (max-width: 1023px) {
	.news-list:first-child {
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 767px) {

	.pagination>li {
		display: none;
	}

	.pagination>li:nth-child(1),
	/* .pagination > li:nth-child(2),
	.pagination > li:nth-child(3),
	.pagination > li:nth-child(4),
	.pagination > li:nth-child(5), */
	.pagination>li:last-child,
	.pagination>li.active

	/* .pagination > li.disabled,
	.pagination > li.active + li */
		{
		display: inline-block;
	}
}




/*====================关于我们二级********
.about-wrap {
	padding: 20px;
}

.about-title {
	font-size: 24px;
	margin-bottom: 30px !important;
}

.about-des {
	width: 90%;
	margin: 0 auto;
}

.sectionA {
	margin-top: -20%;
}

.sectionB {
	margin-top: 10%;
}

.sectionC {
	margin-top: -5%;
}

.line {
	border-bottom: dashed 3px #7e7d80;

}

.about-tit {
	font-size: 18px;
	margin-bottom: 10px;
	margin-top: 30px;
}

.img-center {
	margin: 0 auto;
	display: block;
}

.panel-group a {
	display: block;
}

.panel-default>.panel-heading {
	background-color: #f4f4f6;
	border-color: #ca0e00;
}

.panel-group .panel {
	margin-bottom: 0;
	border-radius: 0;
}

.panel {
	border: none;
	box-shadow: none;
	margin-bottom: 0;
}

.panel-heading {
	padding: 10px 15px;
	border-bottom: 1px solid transparent;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-top: 4px solid #ca0e00;
}

.panel-title span {
	float: right;
	font-size: 1.8rem;
	margin-right: 10px;
}

.panel-title span:after {
	content: "-";
	display: inline-block;
	margin-left: 10px;
	color: #ca0e00;
	font-size: 4.8rem;
	font-weight: 800;
	line-height: 4.8rem;
}

.collapsed span:after {
	content: "+";
	display: inline-block;
	margin-left: 10px;
	color: #ca0e00;
	font-size: 4.8rem;
	font-weight: 800;
	line-height: 4.8rem;
}

.panel-body li {
	font-size: 1.6rem;
	line-height: 2;
}

.title-md {
	font-size: 4.8rem;
}

.investment-bg {
	width: 100%;
	height: 450px;
	background: url(../image/investment.jpg) no-repeat left center;
	background-size: 100% auto;
	background-position: right 30%;
}

.investment-bg .title {
	margin-top: 13%;
}


@media (min-width: 1680px) and (max-width: 1920px) {
	.title-lg {
		font-size: 98px;
	}
}

@media screen and (max-width: 1023px) {
	.sectionA {
		margin-top: 0;
	}

	.sectionB {
		margin-top: 0;
	}

	.sectionC {
		margin-top: 0;
	}
}

/*====================全球战略合作*********/
.cooperation .panel-default>.panel-heading {
	height: 65px;
}

.cooperation .collapsed span::after {
	font-size: 3.6rem;
	line-height: 2.4rem;
	position: absolute;
	right: 30px;
}

.cooperation .panel-title span:after {
	font-size: 3.6rem;
	line-height: 2.4rem;
	position: absolute;
	right: 30px;
}

.cooperation .panel-title span {
	float: left;
	line-height: 38px;
	color: #ca0e00;
}

.cooperation .panel-heading {
	border-top: none;
}

.cooperation .panel-default>.panel-heading {
	background-color: #f4f4f6;
	border-color: #f4f4f6;
}

/* .cooperation.wrapper {
	border-top: 10px solid #f4f4f6;
	box-shadow: 0px 10px 30px 0px rgba(24, 29, 1, 0.18);
} */

.zp-slide .cooperation.wrapper .img {
	background-color: #fff;
}

.cooperation-des {
	width: 70%;
	text-align: left;
}

.global {
	width: 100%;
	height: 700px;
	background: url(../image/MAP.jpg) no-repeat left center;
	background-size: 100%;
	background-position: right top;
}

.global-wrapper {
	padding: 40px;
	text-align: center;
}

.global .title {
	margin-top: 200px;
}

.global-title {
	font-size: 18px;
}

.tech-bg3 {
	background-color: #f4f4f6;
	padding: 150px 150px 150px 200px;
	position: absolute;
	left: 0;
	margin-top: 8%;
}

@media screen and (max-width: 1023px) {
	.global {
		background-attachment: scroll !important;
		height: 380px;
		background-size: 200% auto !important;
		background-position: 50% 50% !important;
	}

	.tech-wrap {
		width: 100%;
	}

	.channel .tech-bg2 {
		padding: 45px;
	}

	.cooperation-des {
		width: 85%;
	}

	.global .title {
		margin-top: 50px;
	}
}

@media screen and (max-width: 667px) {
	.channel .tech-l2 {
		margin-top: 100px;
	}

	.channel .tech-bg2 {
		padding: 50px;
	}

	.cooperation-des {
		width: 100%;
	}

	.global {
		background-attachment: scroll !important;
		height: 580px;
		background-size: 300% auto !important;
		background-position: 50% 50% !important;
	}

	.tech-wrap {
		padding: 20px 0;
	}
}

/*====================健康科普列表*********/
.kepu.tech-l {
	left: 0;
	z-index: 1;
	margin-top: 20px;
}

.kepu.tech-bg {
	margin-top: 5%;
}

.kepu.des {
	font-size: 14px;
}

@media screen and (max-width: 1023px) {
	.kepu.tech-l {
		left: 0;
		z-index: 1;
		margin-top: 0;
	}
}

/*====================社会责任二级*********/
.zeren-wrap {
	width: 80%;
}

.zeren-wrap-box {
	padding-left: 30px;
}

@media screen and (max-width: 1023px) {
	.zeren-wrap {
		width: 100%;
	}

	.zeren-wrap-box {
		padding-left: 5px;
	}
}

@media screen and (max-width: 667px) {
	.zeren-wrap {
		width: 100%;
	}

	.zeren-wrap-box {
		padding-left: 0;
	}
}

/*====================德青源介绍三级*********/
.jianjie-wrap {
	padding: 0 100px;
}

.jianjie-title {
	font-size: 72px;
}

.jianjie-title span {
	font-size: 18px;
	margin-left: 5px;
}

.jianjie-r {
	margin-top: -5%;
}

@media screen and (max-width: 1023px) {
	.jianjie-wrap {
		padding: 0 50px;
	}

	.jianjie-title {
		font-size: 72px;
	}

	.jianjie-r {
		margin-top: 0;
	}
}

/*====================详情页*********/
.content {
	padding-top: 5rem;
	font-size: 1.8rem;
}

.content .title {
	font-size: 4rem;
	font-weight: bold;
}

.content .date {
	font-size: 2.4rem;
	color: #999;
	margin-top: 4.4rem;
	display: none;
}

.content {
	font-size: 2.2rem;
}

.content p,
.content br {
	margin-bottom: 2rem;
	text-indent: 40px;
}

.content img {
	margin-left: -40px;
}

.relevant {
	font-size: 1.8rem;
}

.content .zp-slide-left {
	left: auto;
	right: 0;
}

.content .zp-slide-left:hover {
	left: auto;
	right: 0;
}

/*====================招聘*********/
.recruit-wrap {
	width: 100%;
}

.recruit .panel-heading {
	padding: 0;
	text-transform: capitalize;
}

.recruit .panel-title ul {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	height: 100%;
}

.recruit .panel-title ul li {
	font-size: 2.4rem;
	color: #666;
	padding: 0;
	text-align: center;
}

.recruit .panel-title ul li:last-child::after {
	position: absolute;
	content: "";
	left: 50%;
	top: 50%;
	border: solid #666666;
	border-width: 0 1px 1px 0;
	display: inline-block;
	padding: 3px;
	transform: rotate(45deg) translate(-50%, -50%);
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	width: 10px;
	height: 10px;
}


.recruit .panel-default {
	display: flex;
	flex-direction: column-reverse;
}

.recruit .panel {
	margin-bottom: 0;
	border: 0;
}

.recruit .panel-default .panel-collapse.collapse.in+.panel-heading {
	background-color: rgba(0, 0, 0, 0.3);
}

.recruit .panel-default .panel-collapse.collapsing+.panel-heading {
	background-color: rgba(0, 0, 0, 0.3);
}

.recruit .panel-default .panel-collapse.collapse.in+.panel-heading li {
	color: #fff;
}

.recruit .panel-default .panel-collapse.collapsing+.panel-heading li {
	color: #fff;
}

.recruit .panel-default .panel-collapse.collapse.in+.panel-heading li:last-child::after {
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
	position: absolute;
	content: "";
	left: 50%;
	top: 50%;
}

.recruit .panel-default .panel-collapse.collapsing+.panel-heading li:last-child::after {
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
	position: absolute;
	content: "";
	left: 50%;
	top: 50%;
}

.recruit .panel-default>.panel-heading {
	height: 80px;
	display: flex;
	align-items: center;
}

.recruit .panel-default>.panel-heading h4 {
	height: 100%;
	flex: 1;
}

.recruit .panel-default>.panel-heading h4>a {
	height: 100%;
	display: block;
}

/* 
.recruit .collapsed ul::after {
	content: "+";
	display: inline-block;
	color: #fff;
	font-size: 24px;
	font-weight: 800;
	line-height: 18px;
	background-color: #f4f4f6;
	padding: 9px 10px;
	position: absolute;
	margin-left: -40px;
}

.panel-title ul::after {
	content: "-";
	display: inline-block;
	color: #fff;
	font-size: 24px;
	font-weight: 800;
	line-height: 18px;
	background-color: #f4f4f6;
	padding: 9px 12px;
	position: absolute;
	margin-left: -40px;
} */

.recruit .panel-default>.panel-heading {
	background-color: #fff;
	border-bottom: 1px dashed #d4d4d4;
}

/* .recruit li {
	float: left;
	width: 15%;
	display: inline-block;
	margin-right: 5%;
}

.recruit li:nth-child(2n) {
	float: left;
	width: 25%;
	display: inline-block;
} */

.recruit-tit {
	font-size: 1.8rem;
}

.recruit-tit:after {
	content: "";
	display: block;
	margin: 10px auto;
	width: 70px;
	height: 5px;
	background-color: #ca0e00;
	position: absolute;
}

.recruit .panel-body {
	padding: 52px 0;
	display: flex;
	justify-content: center;
	background-color: #F8F8F8;
}

.recruit .panel-body .panel-content {
	width: 80%;
}

.recruit .panel-body .panel-content p.title {
	font-size: 2.2rem;
	color: #333333;
	margin-top: 40px;
}

.recruit .panel-body .panel-content p {
	font-size: 2.2rem;
	color: #666666;
}

.campus-wrap table {
	font-size: 1.6rem;
}

.campus-wrap table tr td {
	padding-top: 12px;
	padding-bottom: 12px;
}

.campus-wrap table tr th {
	text-align: center;
	font-weight: bold;
}

.campus-wrap table td:nth-child(2n) {
	text-align: center;
}

/*====================大事记时间轴*********/
@media screen and (max-width: 667px) {
	.about2 ul {
		background-position: 10% 0 !important;
	}
}

/*====================*********/
.global-wrap {
	width: 90%;
	margin: 0 auto;
}

.border-grey {
	border: 2px solid #f4f4f6;
	margin: 30px 10px 20px 10px;
}

.active .border-grey {
	margin: 10px 0;
}

.global-page-wrap .global-wrapper {
	padding: 20px;
	text-align: center;
}

.active .global-page-wrap .global-wrapper {
	padding: 30px 20px;
}

@media screen and (max-width: 667px) {
	.global-wrap {
		width: 100%;
	}

	.border-grey {
		margin: 0;
	}

	.active .border-grey {
		margin: 0;
	}

	.global-page-wrap .global-wrapper {
		padding: 5px;
		text-align: center;
	}

	.active .global-page-wrap .global-wrapper {
		padding: 5px;
		background-color: #ca0e00;
	}

	.global-page-wrap img {
		display: none;
	}

	.global-page-wrap .margin-p-sm {
		margin-top: 0 !important;
	}

	.active .global-page-wrap .global-title {
		color: #fff !important;
	}
}

/*====================农场相册*********/
#fancybox-content {
	border-width: 0 !important;
}

fancybox-title {
	margin-left: 0 !important;
}


/* 人才发展 */
.slide-container-talent {
	width: 100%;
}

.slide-container-talent .swiper-slide {
	/* filter: grayscale(100%); */
	transform: scale(0.9);
	transition-duration: 500ms;
	transform-origin: center top;

}

.slide-container-talent .swiper-slide-prev {
	/* filter: grayscale(100%); */
	transform: scale(0.9) translateX(-6%);
}

.slide-container-talent .swiper-slide-next {
	/* filter: grayscale(100%); */
	transform: scale(0.9) translateX(6%);
}

.slide-container-talent .swiper-slide-active {
	transform: scale(1.2);
	filter: none;

}

.slide-container-talent .swiper-button {
	width: 19px;
	height: 24px;
	position: absolute;
	bottom: 30px;
	cursor: pointer;
	background-size: 100%;
	z-index: 99;
}

.slide-container-talent .slide-container-talent-prev {
	background-image: url(../image/green-left.png);
	left: 25%;

}

.slide-container-talent .slide-container-talent-next {
	background-image: url(../image/green-right.png);
	right: 25%;

}

/* .container-talent {
	width: 1600px;
} */

/* 集团产品 */
.product-inner {
	height: 80px;
	background: #F8F8F8;
}

.product-inner ul {
	height: 80px;
	margin: 0;
	/* display: flex; */
	overflow: hidden;
	overflow-x: auto;
	white-space: nowrap;
	width: 100%;
	/* position: absolute;
	right: 0; */
	text-align: right;


}

.product-inner ul li {
	margin-right: 5.4rem;
	height: 100%;
	line-height: 80px;
	font-size: 2.6rem;
	font-weight: 500;
	display: inline-block;
}

.product-inner ul li a {
	color: #666666;
}

.product-inner ul li.active {
	border-bottom: 3px solid #7CBE09;
}

.product-inner ul li.active a {
	color: #7CBE09;

}

.product .product-wrap .introduce .text {
	font-size: 3.6rem;
	font-weight: lighter;
	color: #999;
	margin: 40px auto 80px;
	/* width: 1000px; */

}

.product .product-wrap .swiper-box {
	background-color: #F8F8F8;
	width: 100%;
	padding-top: 8.5rem;
	padding-bottom: 2rem;
}

.product .product-wrap .news {
	margin-top: 10rem;
	margin-bottom: 8.5rem;
}

/* .product .product-wrap .swiper-box  {
	overflow: hidden;
} */

.product .product-wrap .swiper-box .swiper-slide:hover img {
	transform: scale(1.05);
	transition: all 1s;
	/* 	box-shadow: 0px 10px 30px 0px rgba(24, 29, 1, 0.18);
 */
}

.product .product-wrap .swiper-box .swiper-slide:hover {
	transition: all 1s;
	box-shadow: 0px 10px 30px 0px rgba(24, 29, 1, 0.18);
}

.product .product-wrap .swiper-box .cooperation {
	background-color: #ffffff;

}

/* .product .product-wrap .swiper-box .img {
	height: 300px;
} */

.product .product-wrap .swiper-box .news-wrapper-box {
	padding: 0 20px;
}

.product .product-wrap .swiper-box .news-tit {
	font-size: 3rem;
	font-weight: 500;
	color: #333333;
	line-height: 3rem;
	text-shadow: 0px 10px 30px rgba(24, 29, 1, 0.18);
	text-align: left;
	margin-top: 26px;
}

.product .product-wrap .swiper-box .news-info {
	font-size: 2.2rem;
	font-weight: 400;
	color: #666666;
	line-height: 1.5;
	text-shadow: 0px 10px 30px rgba(24, 29, 1, 0.18);
	text-align: left;
	margin-top: 10px;
	white-space: pre-line;
	height: 18rem;
	/* 	overflow: hidden; */
}

.product .product-wrap .swiper-box .news-wrapper-box .btn-wraper {
	text-align: right;
	display: inline-block;
	width: 100%;
	margin-top: 0;
	padding: 25px 0 35px;
}

.product .product-wrap .swiper-box .news-wrapper-box a {
	display: inline-block;
	border-radius: 21px;
}

.product .product-wrap .swiper-box .news-btn:hover {
	display: inline-block;
	width: 12.5rem;
	height: 4.2rem;
	background: #7CBE09;
	box-shadow: 0px 10px 30px 0px rgba(24, 29, 1, 0.18);
	border-radius: 21px;
	font-size: 1.8rem;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 4.2rem;
	text-shadow: 0px 10px 30px rgba(24, 29, 1, 0.18);
	text-align: center;
}

.product .product-wrap .swiper-box .news-btn {
	display: inline-block;
	width: 12.5rem;
	height: 4.2rem;
	background: #ffffff;
	border: 1px solid #7CBE09;
	border-radius: 21px;
	font-size: 1.8rem;
	font-weight: 400;
	color: #7CBE09;
	line-height: 4.2rem;
	text-align: center;
	transition: all .9s cubic-bezier(.215, .61, .355, 1) 0s !important;
}

/* .product .product-wrap .swiper-box .news {
	margin-top: 18rem !important;
} */

.product .product-wrap .swiper-box .news .title {
	font-size: 3rem;
	font-weight: 400;
	color: #333333;
	line-height: 42px;
	text-align: left;
}

.product .product-wrap .swiper-box .news .line {
	width: 90px;
	height: 8px;
	background: #7CBE09;
	margin: 10px 0px 30px;
	border: none;
}

.product .health-content {
	/* 	display: flex;
	flex-wrap: wrap; */
	justify-content: space-between;
	/* 	margin: 95px auto 75px; */
	box-sizing: border-box;
}

.product .health-content .health-item {
	/* width: 768px; */
	display: flex;
	/* padding: 0 30px; */
	padding-right: 30px;
	margin-top: 8rem;
	/* border: 1px solid #000; */
	/* height: 33.3rem; */
	background-color: #F8F8F8;
	;
}

.product .health-content .health-item.htt {

	height: 33.3rem;
}

@media screen and (max-width:767px) {

	.product .health-content .health-item {
		/* width: 768px; */
		display: flex;
		flex-direction: column;
		padding: 0 15px;
		/* margin-top: 0; */
		/* border: 1px solid #000; */
		/* height: 33.3rem; */

	}

	.product .health-content .health-item .health-info {
		display: flex;
		flex-direction: column;
		justify-content: space-evenly;
		margin-left: 0 !important;
		height: 100%;
	}

	/* 	.product .product-wrap .swiper-box .news .swiper-container {
		padding: 0 15px;
	} */
}


.product .health-content .health-item:hover {
	background-color: rgba(169, 226, 47, 0.1);
	transform: scale(1.01);
	box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.18);
	transition: all 1s;
}

.product .health-content .health-item:hover img {
	transform: scale(1.05) translateY(-4rem);
}

.product .health-content .health-item:hover img {
	box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.18);
	/* transform: scale(1.05); */
}

.product .health-content .health-item img {
	width: 24rem;
	height: 32rem;
	transform: translateY(-4rem);
	transition: all 1s;
	border-radius: 8px;
}

.product .health-content .health-item .health-info {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	margin-left: 30px;
	height: 100%;
	margin-top: 10px;
}

.product .health-content .health-item .health-info div {
	text-align: left;
	font-size: 3rem;
}

.product .health-content .health-item:hover .health-arrow {
	color: #78C200;
}

.product .health-content .health-item .health-info .health-date .month {
	font-size: 3rem;
	color: #666666;
}

.product .health-content .health-item .health-info .health-date .year {
	font-size: 2rem;
	color: #666666;
}

.product .health-content .health-item .health-info .health-name {
	font-size: 3rem;
	font-weight: bold;
	color: #333333;
	line-height: 3.3rem;
	padding: 2rem 0;
	height: 100px;
	overflow: hidden;
}

.product .health-content .health-item .health-info .health-detail {
	font-size: 2.2rem;
	/* 	font-family: SourceHanSansCN-Normal, SourceHanSansCN; */
	font-weight: 400;
	color: #666666;
	line-height: 1.5;
	height: 54px;
	overflow: hidden;
}

.bd1 {
	border-bottom: 1px solid #EAEBEC;
}

@media screen and (max-width:1280px) {
	.product .health-content .health-item .health-info .health-detail {
		height: 50px;
	}
}

@media screen and (max-width:767px) {

	.product .health-content .health-item.htt {
		height: auto;
	}

	.product .health-content .health-item .health-info .health-detail {
		height: auto;
		overflow: inherit;
	}

	.product .health-content .health-item .health-info .health-name {
		height: auto;
		overflow: inherit;
	}

}



/* 新闻资讯 */
.top-single {
	height: 48rem;
	background: #F8F8F8;
	margin-top: 16rem;

}

.top-single .container {
	/* display: flex; */
	height: 100%;

}

.top-single img {
	/* height: 48rem; */
	width: 64rem;
	transform: translateY(-6rem);
	border-radius: 20px;
	transition: all 1s;
}

.top-single:hover img {
	box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.18);
	transform: scale(1.02) translateY(-6rem);

}

.top-single .news-new-info {
	/* margin-left: 48px; */
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: flex-start;
	height: 100%;
}

.top-single .news-new-info div {
	text-align: left;
}

.top-single .news-new-info .news-new-title {
	font-size: 3rem;
	font-weight: bold;
	color: #333333;
	line-height: 3.4rem;
}

.top-single .news-new-info .news-new-detail {
	font-size: 2.2rem;
	font-weight: 400;
	color: #666666;
	line-height: 30px;
}

.top-single .news-new-info .news-new-date {
	font-size: 2rem;
	font-weight: 400;
	color: #666666;
	line-height: 2.4rem;
}

.top-single .news-new-info .news-new-btn {
	background: linear-gradient(172deg, #B3E015 0%, #7CBE09 100%);
	box-shadow: 4px 14px 20px 0px rgba(121, 163, 7, 0.36);
	border-radius: 30px;
	font-size: 1.4rem;
	color: #FFFFFF;
	line-height: 1.9rem;
	letter-spacing: 1px;
	padding: 13px 32px;
	cursor: pointer;
	transition: all .9s cubic-bezier(.215, .61, .355, 1) 0s !important;
}

/* 关于我们 */
.com-about {
	display: flex;
	align-items: center;
	padding: 10rem 16rem 15rem;
	justify-content: center;
}

@media screen and (max-width:1023px) {
	.com-about {
		/* flex-direction: column; */
		padding: 10rem 0 15rem;
		align-items: flex-start;
	}

}

@media screen and (max-width:767px) {
	.com-about {
		flex-direction: column;
		padding: 10rem 15px 15rem;
		align-items: flex-start;
	}

}

.com-about div {
	align-items: flex-start;
}

.com-about .left-info {
	flex: 2;
	display: flex;
	flex-direction: column;
}

.com-about .left-info .en-title {
	font-size: 3rem;
	font-weight: bold;
	color: #999999;
	line-height: 28px;
	display: flex;
	flex-direction: column;
}

.com-about .left-info .cn-title {
	font-size: 5rem;
	font-weight: bold;
	color: #333333;
	line-height: 6.2rem;
	letter-spacing: 1px;
	display: flex;
	flex-direction: column;
	margin: 55px 0px;
	text-align: left;
}

.com-about .left-info .code {
	display: flex;
	flex-direction: column;
	font-size: 3rem;
	font-weight: bold;
	color: #999999;
	line-height: 45px;
}

.com-about .left-info .code1 {
	color: #999999;
}

.com-about .left-info .code2 {
	color: #E02020;
}

.com-about .right-info {
	/* 	flex: 3;
	height: 326px; */
	font-size: 2.4rem;
	font-weight: 400;
	color: #999999;
	line-height: 1.5;
	letter-spacing: 1px;
	/* 	overflow-y: auto; */
	padding: 2rem 3rem 6rem 4rem;
	white-space: pre-line;
	background-color: #F8F8F8;
	text-align: justify;
}

.com-about .right-info p {
	padding: 1rem 0;
	text-indent: 40px;
}

div::-webkit-scrollbar {
	width: 6px;
}

div::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	opacity: 0.2;
	/* background: #7CBE09; */
}

div::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 3px;
	/* background: #7CBE09; */
}

/* .com-res {
	display: flex;
	align-items: flex-start;
	justify-content: center;

} */

.com-res {
	/* 	padding: 15rem 0px 10rem 0; */
	/* width: 1600px; */
	margin: 0 auto;
	background-position: center top !important;
	background-size: cover !important;
}

.com-res .title {
	font-size: 6rem;
	/* letter-spacing: 1.6rem; */
	/*文字渐变*/
	background: #7DBE0A;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	/* -webkit-text-fill-color: #7DBE0A; */
	/*倒影*/
	-webkit-box-reflect: below -14px linear-gradient(transparent, rgba(0, 0, 0, 0.09));
	/* width: 50%; */
	margin-top: 25rem;
	/* z-index: 9999; */

}

.culture {
	position: relative;
	overflow: hidden;
}


.culture .fixScrol img {
	position: absolute;
	left: 0;
	/* top: 30rem; */
	bottom: 0;
	width: 50%;
}

.com-res .title-list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex: 1;
	/* margin-top: 5rem; */
	margin-top: 15rem;
	margin-bottom: 5rem;
}

.com-res .title-list>div {
	margin-bottom: 5rem;
	display: flex;
	align-items: center;
	width: 100%;
}

.com-res .title-list img {
	margin-right: 40px;
	width: 8rem;
}

.com-res .title-list .title-text {
	text-align: left;
	width: 100%;
}

.com-res .title-list .title-top {
	font-size: 3rem;
	/* 	font-weight: bold; */
	color: #333333;
	line-height: 4.5rem;
	border-bottom: 2px solid #D9D9D9;

}

.com-res .title-list .title-top span:first-child {
	font-size: 4.8rem;
	font-weight: bold;

}

.com-res .title-list .title-top span:nth-child(2) {
	color: #999999;
}

.com-res .title-list .title-top span:last-child {
	color: #A9E22F;
}

.com-res .title-list .title-bottom {
	font-size: 2.4rem;
	font-weight: 500;
	color: #333333;
	line-height: 1.5;
	margin-top: 10px;
}

@media screen and (max-width:767px) {
	.com-res .title-list {
		margin-top: 5rem;
	}

	.com-res .title {
		font-size: 4rem;

	}

	.com-about .right-info {
		flex: none;
	}

	.culture .fixScrol {
		display: none;
	}

	.com-res .title-list .title-bottom {
		font-size: 2rem;
	}
}

/* 创始人 */
.people-info {
	/* display: flex; */
	/* align-items: center; */
	height: 66rem;
	box-sizing: border-box;
	transition: all 1s;
}

.people-info img {
	height: 100%;
	/* width: 525px; */
	/* width: 100%; */
	box-shadow: 0px 10px 30px 0px rgba(24, 29, 1, 0.18);
	width: auto;
	max-width: inherit;
}

.people-info>div:nth-child(2) {
	padding: 0;
	height: 100%;
	overflow: hidden;
}

.people {
	flex: 1;
	padding: 10rem 9rem;
	background: url(../image/people-bgc.jpg);
	direction: ltr;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.people .people-en {
	font-size: 7rem;
	font-weight: bold;
	color: rgba(247, 176, 21, 0.3);
	line-height: 10rem;
}

@media screen and (max-width:767px) {
	.people .people-en {
		font-size: 5rem;
		font-weight: bold;
		color: rgba(247, 176, 21, 0.3);
		line-height: 10rem;
	}

	.people {
		padding: 2rem 2rem;
	}
}

.people .people-cn {
	font-size: 5rem;
	font-weight: bold;
	color: #2E2D33;
	line-height: 7.5rem;
	letter-spacing: 4px;
	margin-bottom: 28px;
}

.people .people-inr {
	font-size: 2rem;
	font-weight: 400;
	color: #333333;
	line-height: 2.8rem;
	text-align: left;
}

.people .people-detail {
	font-size: 2rem;
	font-weight: 400;
	color: #D5D5D5;
	line-height: 1.5;
	height: 258px;
	/* direction: rtl; */
	text-align: left;
}

.people .people-detail p {
	padding: 10px 0;
	line-height: 1.8;
	padding-right: 10px;
}

.people-info .people-detail {
	display: none;
	overflow-y: auto;
	/* padding: 0 3rem; */
}

.people-info:hover .people {
	/* background: rgba(28, 18, 2, 0.7); */
	background: url(../image/people-bgc1.jpg);
	background-size: cover;
}

.people-info:hover .people-detail {
	display: block;

}

.people-info:hover .people-inr {
	display: none;

}

.people-info:hover .people-en {
	color: #F7B015;

}

.people-info:hover .people-cn {
	color: #FFFFFF;

}

/* 管理团队 */

.team .team-item {
	padding: 3rem;
	/* background-color: #FFFDFA; */
	background-color: #f8f8f8;
	border-radius: 6px;
	/* height: 47rem; */
	margin: 5rem 0;
	transition: all 1s;
}

.team .team-item:hover {

/* 	background-color: #F6FCEA; */
	box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.18);
}

.team .team-item div {
	text-align: left;
}

.team-item-innner {
	padding: 3rem;
	background-color: #fff;
}

.team .team-item .team-en {
	font-size: 7rem;
	font-weight: normal;
	color: rgba(124, 190, 9, 0.1);
	line-height: 8rem;
	font-style: italic;
}

.team .team-item .team-cn {
	font-size: 3rem;
	font-weight: bold;
	color: #333333;
	line-height: 4.5rem;
	letter-spacing: 2px;
	margin-bottom: 30px;
}

@media screen and (max-width:767px) {
	.team .team-item {
		padding: 15px;

	}

	.team .team-item .team-en {
		font-size: 5rem;
		font-weight: normal;
		color: rgba(124, 190, 9, 0.1);
		line-height: 8rem;
		font-style: italic;
	}
}

.team .team-item .team-info {
	font-size: 1.8rem;
	font-weight: 400;
	color: #666666;
	line-height: 2.8rem;
	letter-spacing: 1px;
	height: 21rem;
	overflow-y: auto;
	text-align: justify;
	white-space: pre-line;
}

@media screen and (max-width:767px) {
.team .team-item .team-info {
	height: auto;
	margin-bottom: 20px
}
	
}

/* 时间轴 */
.his-content {
	margin-top: 75px;
	background-color: #F9F9F9;
	/* background: url(../image/process-bg.png); */
	background-size: cover;
	background-position: center center;
	padding-bottom: 100px;
	display: flex;
	flex-direction: column;
}

.his-content a {
	display: none;
	width: 31px;
	height: 29px;
}

.his-content .his-scroll {
	display: flex;
	align-items: center;
}

.his-content a:first-child {
	background: url(../image/about_img03.png) no-repeat;
}

.his-content a:last-child {
	background: url(../image/about_img04.png) no-repeat;
}

.his-content a:first-child:hover {
	background: url(../image/about_img03.png) no-repeat center bottom;
	;
}

.his-content a:last-child:hover {
	background: url(../image/about_img04.png) no-repeat center bottom;
	;
}

.his-time {
	width: 100%;
	position: relative;
	overflow: hidden;
	height: 50rem;
	transition: all 1s;
}

.his-time::before {
	display: block;
	content: "";
	width: 100%;
	height: 4px;
	background-color: #F1F1F1;
	position: absolute;
	top: 80px;
	transition: all 1s;
}

.his-time ul {
	/* display: flex; */
	margin: 0;
	margin-top: 80px;
	position: relative;

	/* overflow: hidden; */
	/* position: absolute;
	top: 50%;
	transform: translateY(-50%); */
	/* 	padding: 0 10rem; */
}

.his-time ul li {
	width: 380px;
	position: relative;
	float: left;
	min-height: 80px;
	transition: all 1s;
	width: 270px;
	/* overflow: hidden; */
}

.his-time ul li .top {
	/* 	position: absolute;
	left: 50%;
	transform: translate(-50%, -45px); */
	font-size: 2rem;
	font-weight: bold;
	color: #666666;
	/* 	line-height: 3; */
	letter-spacing: 1px;
	display: block;
}

.his-time ul li .top.title {
	color: rgba(125, 190, 10, .1);
	margin-top: 6rem;
	font-size: 3rem;
	line-height: 4.2rem;
}

.his-time ul li .top.des {
	color: #999;
	margin-top: 0;
	font-size: 3rem;
	line-height: 4.5rem;
}

.his-time ul li .bottom {
	display: none;
}

.his-time ul li .bottom span {
	display: inline-block;
	margin-bottom: 24px;
}

.his-time ul li .bottom span:nth-child(1) {
	font-size: 3rem;
	font-weight: 500;
	color: #7AC000;
	line-height: 4.2rem;
}

.his-time ul li .bottom span:nth-child(2) {
	font-size: 3rem;
	font-weight: 800;
	color: #333333;
	line-height: 4.5rem;

}

.his-time ul li .bottom span:nth-child(3) {
	font-size: 1.8rem;
	font-weight: 400;
	color: #333333;
	line-height: 2.4rem;
}

.his-time ul li::after {
	width: 10px;
	height: 10px;
	display: block;
	content: '';
	background-color: #999999;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: 4px;
	transform: translate(-50%, -7px);
	transition: all 0.8s;
}

.his-time ul li::before {
	width: 20px;
	height: 20px;
	display: block;
	content: '';
	background-color: #F9F9F9;
	border-radius: 50%;
	border: 1px solid #999999;
	position: absolute;
	left: 50%;
	top: 4px;
	transform: translate(-50%, -12px);
	transition: all 0.8s;
}

.his-time ul li.active .top {
	display: none;
}

.his-time ul li.active .bottom {
	display: flex;
	flex-direction: column;
	transform: translateY(45px);
}

.his-time ul li.active .bottom span:last-child {
	line-height: 2;
	white-space: pre-line;
}

.his-time ul li.active::after {
	width: 24px;
	height: 24px;
	display: block;
	content: '';
	background-color: #78C200;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: 4px;
	transform: translate(-50%, -14px);
	transition: all 0.8s;
}

.his-time ul li.active::before {
	width: 54px;
	height: 54px;
	display: block;
	content: '';
	background-color: rgba(120, 194, 0, 0.2);
	border-radius: 50%;
	position: absolute;
	border: none;
	left: 50%;
	top: 4px;
	transform: translate(-50%, -29px);
	transition: all 0.8s;
}

.his-detail.active {
	margin-top: 5rem;
	display: block;
	text-align: left;
	background: rgba(125, 190, 10, .1);
	padding: 10rem;
}

.his-detail {
	display: none;

}

.his-info {
	display: flex;
	align-items: flex-start;
}


.his-info .his-info-right {
	font-size: 2rem;
	font-weight: 500;
	color: #333333;
	line-height: 30px;
	margin-left: 30px;
}

.his-info:hover .his-info-right {
	color: #7AC000;
}

.his-info .his-info-left {
	white-space: nowrap;
}

.his-info .his-info-left span {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 45px;
	color: #666666;
}

.his-info .his-info-left span:nth-child(1) {
	font-size: 3rem;
	font-weight: 500;
	color: #D0A54D;
	line-height: 4.5rem;
}

@media screen and (max-width:1920px) {
	.his-time ul li {
		width: 36rem;
	}
	
	.his-time ul {
		margin-left: 6rem;
	
	}
}

@media screen and (max-width:1440px) {
	.his-time ul li {
		width: 35rem;
	}
	
	.his-time ul {
		margin-left: 2.8rem;
	
	}
}

@media screen and (max-width:1280px) {
	.his-time ul li {
		width: 250px;
	}
}

@media screen and (max-width:1024px) {
	.his-time ul li {
		width: 190px;
	}
}

@media screen and (max-width:992px) {
	.his-time ul li {
		width: 150px;
	}
}

@media screen and (max-width:767px) {

	/* 	.his-time {
		height: 70rem;
	} */
	
	.his-time ul {
		margin-left: 0;
	
	}

	.his-time ul li {
		width: 170px;
	}

	.his-content a {
		display: block;
		width: 35px;
		height: 29px;
	}

	.his-detail.active {
		padding: 5rem 15px;

	}

	.his-info {
		margin-bottom: 2rem;
	}

	.his-content {
		margin-top: 7rem;
		padding-bottom: 0;
	}
	
	.his-time ul li.active::before,
	.his-time ul li.active::after {
	  transition: all 0s;
	}
}

/* 联系我们 */
.link-us {
	/* margin-top: 45px; */
	position: relative;
}

.link-us .animate {
	position: absolute;
	top: -50%;
	left: 0;
	opacity: 0;
	background: rgba(255, 255, 255, .9);
	width: 100%;
	height: 0;
	z-index: -1;
}

.link-us:hover .animate {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
	transition: all 0.4s ease-in-out;
	height: 100%;
	z-index: 1;
}

.link-us .link-top {
	display: flex;
	align-items: center;
	border-bottom: 2px solid #DEDEDE;
}

.link-us .link-top .link-title {
	font-size: 5rem;
	font-weight: 500;
	color: #333333;
	line-height: 7.4rem;
	margin-left: 24px;
	padding: 4rem 0;
}

.link-us .link-bottom {
	display: flex;
	align-items: center;
	padding: 100px 0 210px;
}

.link-us .link-bottom .link-left {
	height: 30rem;
	/* flex: 1.5; */
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
}

.link-us:nth-child(2) .fax {
	display: none;
}

.link-us .link-bottom .link-right {
	flex: 1;
	margin-left: 20px;
}

.link-us .link-bottom .link-left .link-type {
	display: flex;
	align-items: center;
	justify-content: space-between;

}

.link-us .link-bottom .link-left div {
	text-align: left;
	width: 100%;
}

.link-us .link-bottom .link-left span {
	font-size: 20px;
	font-weight: 500;
	color: #666666;
	line-height: 30px;
	letter-spacing: 1px;
}

.link-us .link-bottom .link-left p {
	font-size: 20px;
	font-weight: bold;
	color: #333333;
	line-height: 30px;
	letter-spacing: 1px;
}

.other-link {
	margin-top: 70px;

}

.other-link .title {
	font-size: 3rem;
	font-weight: 500;
	color: #333333;
	line-height: 4.5rem;
	letter-spacing: 2px;

}

.other-link p {
	text-align: left;
	display: flex;
	align-items: center;
}

.other-link .other-type {
	/* display: flex;
	align-items: center;
	justify-content: space-between; */
	margin-top: 15rem;
}

.other-link .other-type>div {
	padding-bottom: 30px;

	/* padding-right: 180px; */
	/* width: 413px; */
}

.other-link .other-type .name {
	font-size: 2.2rem;
	font-weight: 500;
	color: #333333;
	line-height: 2.7rem;
	letter-spacing: 1px;
}

.other-link .other-type .img {
	margin-top: 20px;
	border-bottom: 2px solid #C9C9C9;
	padding-bottom: 20px;
}

.other-link .other-type span {
	font-size: 2rem;
	font-weight: 500;
	color: #999999;
	line-height: 2.1rem;
}

/* .brand-content {
	position: relative;
	display: flex;
	height: 50000px;
} */
.brand-content a {
	display: inline-block;
	position: sticky;
	top: 200px;
	left: 100%;
}

.brand-title {
	font-size: 5rem;
	font-weight: 400;
	color: #333333;
	line-height: 7rem;
	margin-top: 9rem;
	margin-bottom: 5rem;
	display: inline-block;
}

.brand-btn {
	width: 12.5rem;
	height: 4.2rem;
	background: #7CBE09;
	box-shadow: 0px 10px 20px 0px rgba(124, 190, 9, 0.5);
	border-radius: 21px;
	font-size: 1.8rem;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 2.5rem;
	text-shadow: 0px 10px 20px rgba(124, 190, 9, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	/* position: fixed;
	top: 350px;
	right: 100px; */
	z-index: 999;
}

.rencailinian {
	margin: 9rem 0 20rem;
}

.rencailinian .rcln-left {
	text-align: center;

}

.rencailinian .rcln-title {
	font-size: 5rem;
	font-weight: bold;
	color: #333333;
	line-height: 7.5rem;

}

.rencailinian .rcln-info {
	font-size: 2rem;
	color: #999999;
	line-height: 2.4rem;
	letter-spacing: 6px;
}

.rencailinian .rcln-description {
	font-size: 2.2rem;
	font-weight: 400;
	color: #666666;
	line-height: 1.8;
}

@media screen and (max-width:1280px) {
	.link-us .contact-img {
		width: 150%;
		max-width: 150%;
		margin-left: -40%;
	}
}

@media screen and (max-width:1023px) {

	.link-us {
		overflow: hidden;
	}

	.link-us .contact-img {
		width: 150%;
		max-width: 150%;
		margin-left: -40%;
	}

	.link-us .link-top .link-title {
		font-size: 2rem;
		font-weight: 500;
		color: #333333;
		line-height: 1.5;
		margin-left: 24px;
	}

	.link-us .link-bottom {
		padding: 20px 0 20px;
	}

	.link-us .link-bottom .link-left span {
		font-size: 14px;
		line-height: 20px;
	}

	/* 	.link-us .link-bottom .link-left .link-type {
	  display: block;
	} */

	.link-top img {
		width: 30px;
	}
}

@media screen and (max-width:767px) {
	.rencailinian .rcln-description {
		font-size: 1.8rem;
		font-weight: 400;
		color: #666666;
		line-height: 3.2rem;
		margin-top: 20px;

	}

	.link-us .link-bottom .link-right {
		display: none;
	}

	.link-us .link-top .link-title {
		font-size: 3rem;
		font-weight: 500;
		color: #333333;
		line-height: 1.5;
		margin-left: 24px;
	}

	.link-us .contact-img {
		width: 300%;
		max-width: 300%;
		margin-left: -40%;
	}

	.rencailinian {
		margin: 9rem 0 10rem;
	}
}

.img-title {
	position: absolute;
	left: 50px;
	bottom: 3rem;
	font-size: 3rem;
	font-weight: 500;
	color: #FFFFFF;
	line-height: 4.5rem;
	text-shadow: 2px 2px 5px #666;
	text-transform: capitalize;
}

.video {
	width: 100%;
	margin-top: 85px;
}

#startvideo {
	width: 100%;
}

#startvideo {
	display: none;
}

.video1 {
	display: block;
	width: 100%;
	margin-top: 11rem;
}

.video2 {
	width: 100%;
}

@media screen and (max-width: 1023px) {

	.video1 {
		display: block;
		width: 100%;
		margin-top: 11rem;
	}

	#startvideo {
		display: none;
	}
}

/* 产品视频 */
.product.vedio .swiper-button-next,
.product.vedio .swiper-button-prev {
	color: #fff;
	border: 1px solid #7CBE09;
	background-color: #7CBE09;
	position: absolute;
	bottom: 0;
	right: 0;
}

.product.vedio .swiper-button-prev {
	left: 0;
}
